home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EuroCD 3
/
EuroCD 3.iso
/
Programming
/
Python1.4_Source
/
Python
/
protos
/
bltinmodule_protos.h
next >
Wrap
Text File
|
1998-06-24
|
3KB
|
58 lines
/* bltinmodule.c */
static object *builtin___import__ ( object *self , object *args );
static object *builtin_abs ( object *self , object *args );
static object *builtin_apply ( object *self , object *args );
static object *builtin_callable ( object *self , object *args );
static object *builtin_filter ( object *self , object *args );
static object *builtin_chr ( object *self , object *args );
static object *builtin_cmp ( object *self , object *args );
static object *builtin_coerce ( object *self , object *args );
static object *builtin_compile ( object *self , object *args );
static object *builtin_complex ( object *self , object *args );
static object *builtin_dir ( object *self , object *args );
static object *do_divmod ( object *v , object *w );
static object *builtin_divmod ( object *self , object *args );
static object *builtin_eval ( object *self , object *args );
static object *builtin_execfile ( object *self , object *args );
static object *builtin_float ( object *self , object *args );
static object *builtin_getattr ( object *self , object *args );
static object *builtin_globals ( object *self , object *args );
static object *builtin_hasattr ( object *self , object *args );
static object *builtin_id ( object *self , object *args );
static object *builtin_map ( object *self , object *args );
static object *builtin_setattr ( object *self , object *args );
static object *builtin_delattr ( object *self , object *args );
static object *builtin_hash ( object *self , object *args );
static object *builtin_hex ( object *self , object *args );
static object *builtin_input ( object *self , object *args );
static object *builtin_int ( object *self , object *args );
static object *builtin_len ( object *self , object *args );
static object *builtin_list ( object *self , object *args );
static PyObject *builtin_slice ( PyObject *self , PyObject *args );
static object *builtin_locals ( object *self , object *args );
static object *builtin_long ( object *self , object *args );
static object *min_max ( object *args , int sign );
static object *builtin_min ( object *self , object *v );
static object *builtin_max ( object *self , object *v );
static object *builtin_oct ( object *self , object *args );
static object *builtin_open ( object *self , object *args );
static object *builtin_ord ( object *self , object *args );
static object *do_pow ( object *v , object *w );
static object *builtin_pow ( object *self , object *args );
static object *builtin_range ( object *self , object *args );
static object *builtin_xrange ( object *self , object *args );
static object *builtin_raw_input ( object *self , object *args );
static object *builtin_reduce ( object *self , object *args );
static object *builtin_reload ( object *self , object *args );
static object *builtin_repr ( object *self , object *args );
static object *builtin_round ( object *self , object *args );
static object *builtin_str ( object *self , object *args );
static object *builtin_tuple ( object *self , object *args );
static object *builtin_type ( object *self , object *args );
static object *builtin_vars ( object *self , object *args );
static object *newstdexception ( char *name );
static void initerrors ( void );
static object *filtertuple ( object *func , object *tuple );
static object *filterstring ( object *func , object *strobj );